home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / mac / data / help.dir / 00002_Script_2 < prev    next >
Text File  |  2001-01-26  |  499b  |  28 lines

  1. on exitFrame
  2.   --  clearRolls
  3.   repeat with x = 10 to 19
  4.     if rollover(x) then
  5.       set the visible of sprite (x + 20) = true
  6.     else
  7.       set the visible of sprite (x + 20) = false
  8.     end if
  9.   end repeat
  10.   repeat with x in[40,41,42,43,44,45,46,47,48,49,50]
  11.     if rollover(x) then
  12.       roll x
  13.     else
  14.       unroll x
  15.     end if
  16.   end repeat
  17.   go the frame
  18. end
  19.  
  20.  
  21. on clearrolls
  22.   repeat with x = 30 to 39
  23.     set the visible of sprite x = False
  24.   end repeat
  25.   
  26. end
  27.  
  28.